home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / serien / purity / nr.42 / includes3v1 / includes3v1.lha / Utils / PCQMemory.i < prev    next >
Text File  |  1994-12-04  |  501b  |  26 lines

  1. {
  2.     PCQMemory.i of PCQ Pascal
  3.  
  4.     These routines allocate and deallocate so-called PCQ memory
  5.     from the system.  They are included for compatibility with
  6.     Turbo Pascal, and in future versions of PCQ they'll be
  7.     standard procedures.
  8. }
  9.  
  10.  
  11. {
  12.     Allocate some system memory, and place the result in p.
  13. }
  14.  
  15. Procedure GetMem(var p : Address; Size : Integer);
  16.     External;
  17.  
  18. {
  19.     Free some memory allocated through GetMem
  20. }
  21.  
  22. Procedure FreePCQMem(var p : Address; Size : Integer);
  23.     External;
  24.  
  25.  
  26.